Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/209 - Speech-Number-Guess game/

img /cody/swapnilsparsh/30DaysOfJavaScript/209 - Speech-Number-Guess game/img/
2 Items
  • bg.jpg
  • mic.jpg
  • index.html /cody/swapnilsparsh/30DaysOfJavaScript/209 - Speech-Number-Guess game/index.html
    362 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, in
    readme.md /cody/swapnilsparsh/30DaysOfJavaScript/209 - Speech-Number-Guess game/readme.md
    242 Views
    0 Comments
    ## Speak Number Guessing Game

    Number guessing game where you speak your guess into the microphone using the speech recognition
    script.js /cody/swapnilsparsh/30DaysOfJavaScript/209 - Speech-Number-Guess game/script.js
    155 Views
    0 Comments
    const msgEl = document.getElementById('msg');

    const randomNum = getRandomNumber();

    console.log('Number:', randomNum);

    window.
    style.css /cody/swapnilsparsh/30DaysOfJavaScript/209 - Speech-Number-Guess game/style.css
    157 Views
    0 Comments
    * {
    box-sizing: border-box;
    }

    body {
    background: #2f3542 url('img/bg.jpg') no-repeat left center/cover;
    color: #fff;
    mi